home *** CD-ROM | disk | FTP | other *** search
/ Business Heaven / Business Heaven.iso / contact / impulse / i.bat < prev    next >
DOS Batch File  |  1993-08-01  |  528b  |  29 lines

  1. @ECHO OFF
  2.  
  3. rem          the order of the following conditions is important
  4. rem          do not want to run the demo program if the full blown
  5. rem          package is available
  6.  
  7. if exist isales.exe goto isales
  8. if exist i.exe goto i
  9. if exist i1.exe goto i1
  10. if exist ishare.exe goto ishare
  11.  
  12. :isales
  13. isales %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
  14. goto end
  15.  
  16. :i
  17. i %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
  18. goto end
  19.  
  20. :i1
  21. i1 %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
  22. goto end
  23.  
  24. :ishare
  25. ishare %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
  26. goto end
  27.  
  28. :end
  29.